{% extends "base.html" %} {% block title %}Vaultora — Performance Metrics{% endblock %} {% block content %}
| Total Uploads | {{ summary.total_uploads }} |
| Average Time | {{ summary.avg_encrypt_ms }}ms |
| Fastest | {{ summary.min_encrypt_ms }}ms |
| Slowest | {{ summary.max_encrypt_ms }}ms |
| Total Checks | {{ summary.total_integrity_checks }} |
| Pass Rate | {{ summary.integrity_pass_rate }}% |
| Total Downloads | {{ summary.total_downloads }} |
| Avg Decrypt+Verify | {{ summary.avg_decrypt_ms }}ms |
| Event | File | Size (KB) | Duration (ms) | Integrity | Time |
|---|---|---|---|---|---|
| {% if m.event == "encrypt" %} encrypt {% else %} decrypt {% endif %} | {{ m.filename or '—' }} | {{ m.file_size_kb or '—' }} | {{ m.duration_ms }} | {% if m.passed is none %} N/A {% elif m.passed %} ✓ Passed {% else %} ✗ Failed {% endif %} | {{ m.timestamp.strftime('%Y-%m-%d %H:%M:%S') }} |